home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d13 / paus12.arc / TEST.BAT < prev   
DOS Batch File  |  1991-03-10  |  471b  |  26 lines

  1. @ECHO OFF
  2. PAUS /N1 /D10 /TIs Jeffrey Morley a swell guy?
  3. IF ERRORLEVEL 89 GOTO GotYes
  4. IF ERRORLEVEL 78 GOTO GotNo
  5. IF ERRORLEVEL 1 GOTO GotOtherKey
  6.  
  7. ECHO.
  8. ECHO The ERRORLEVEL is 0, Need more time to find "Y"?
  9. GOTO END
  10.  
  11. :GotYes
  12. ECHO.
  13. ECHO You answered yes!  A fine judge of character...
  14. GOTO END
  15.  
  16. :GotNo
  17. ECHO.
  18. ECHO You answered no?  Well same to ya...
  19. GOTO END
  20.  
  21. :GotOtherKey
  22. ECHO.
  23. ECHO Not really sure eh... "Y" is right between "T" and "U"!
  24.  
  25. :END
  26.